Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active October 23, 2022 17:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marketinview/d9c9f7f438c771850819 to your computer and use it in GitHub Desktop.
Save marketinview/d9c9f7f438c771850819 to your computer and use it in GitHub Desktop.
Qualtrics: Hide Question and Go To Next Page. This script can be used if you want to randomize choices then carry them over in the same randomized order to subsequent questions. #qualtrics #js #jq #hide #next
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId).hide();
jQuery("#Buttons").hide();
});
Qualtrics.SurveyEngine.addOnReady(function() {
jQuery('#NextButton').click();
});
@marketinview
Copy link
Author

marketinview commented Nov 14, 2017

See additional Qualtrics solutions at: https://qualtricswiki.tgibbons.com/doku.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment